Skip to content

Commit

Permalink
Alpha v0.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
TheBrokenRail committed Oct 1, 2023
1 parent 1e108df commit ef96f0e
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 8 deletions.
11 changes: 8 additions & 3 deletions .github/workflows/api.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,13 +31,18 @@ jobs:
java-version: '17'
distribution: 'temurin'
cache: gradle
- name: Publish
- name: Publish Maven Package
if: startsWith(github.ref, 'refs/tags/')
run: |
chmod +x gradlew
./gradlew publish javadoc
cp api/method-generator/openapi.json api/build/docs/javadoc
./gradlew publish
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Generate JavaDoc
run: |
chmod +x gradlew
./gradlew generateMethods javadoc
cp api/method-generator/openapi.json api/build/docs/javadoc
- name: Upload GitHub Pages
uses: actions/upload-pages-artifact@v2
with:
Expand Down
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,16 @@
# Changelog

### Alpha v0.1.1 (2023-10-1)
- Combustible now has an [official Lemmy community](https://lemmy.world/c/combustible)!
- Comment trees can now be collapsed.
- Community information dialogs now contain additional statistics.
- Enable auto-correct on text fields.
- Ripple-effects are now included on Markdown images.
- New app settings:
- Image loading can now be disabled.
- Markdown images can be now be disabled.
- Community/user avatars are now shown in the top app bar.
- Ellipsized text (like "!lemmy...") in the top app bar will display a toast containing the full text when clicked.

### Alpha v0.1.0 (2023-9-5)
- Initial Release
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
import okhttp3.HttpUrl;

public class ConnectionTest {
private static final HttpUrl TEST_INSTANCE = HttpUrl.parse("https://voyager.lemmy.ml/");
private static final HttpUrl TEST_INSTANCE = HttpUrl.parse("https://lemmy.ml/");

@Test
public void basicTest() throws InterruptedException {
Expand Down Expand Up @@ -157,17 +157,17 @@ public void callbackHelperTest() throws InterruptedException {
});

// Test GetSite
Boolean[] isSuccess = new Boolean[1];
boolean[] isSuccess = {false};
GetSite method = new GetSite();
connection.send(method, getSiteResponse -> {
// Success
isSuccess[0] = true;
}, () -> {
// Error
isSuccess[0] = false;
// Error, But Callback Helper Was Used
isSuccess[0] = true;
});
latch.await();
assertNull(isSuccess[0]);
assertFalse(isSuccess[0]);
assertNotNull(callback[0]);
callback[0].run();
assertTrue(isSuccess[0]);
Expand Down

0 comments on commit ef96f0e

Please # to comment.