Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adapter for larandegruppen/admentum #652

Draft
wants to merge 34 commits into
base: main
Choose a base branch
from
Draft

Adapter for larandegruppen/admentum #652

wants to merge 34 commits into from

Commits on Sep 1, 2023

  1. Configuration menu
    Copy the full SHA
    f54bfe5 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    2daa1b5 View commit details
    Browse the repository at this point in the history

Commits on Sep 8, 2023

  1. Configuration menu
    Copy the full SHA
    e0adb97 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    6289c43 View commit details
    Browse the repository at this point in the history

Commits on Sep 14, 2023

  1. Configuration menu
    Copy the full SHA
    58a0ed9 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    bd6a808 View commit details
    Browse the repository at this point in the history

Commits on Sep 15, 2023

  1. Added .aider* to .gitignore.

    irony committed Sep 15, 2023
    Configuration menu
    Copy the full SHA
    3b7942a View commit details
    Browse the repository at this point in the history
  2. aider: Updated React Native version to 0.67.3 in package.json.

    # Aider chat conversation:
    
    USER: help me upgrade react native to a version compatible with the rest of the dependencies
    
    ASSISTANT: Sure, I can guide you through the process of upgrading React Native to a version compatible with the rest of your dependencies. However, I need to know the current version of React Native you're using and the versions of the other dependencies in your project.
    
    Please share your `package.json` file. This file contains the list of dependencies and their versions.
    
    Once you've shared the `package.json` file, I can provide you with the steps to upgrade React Native.
    
    USER: I added these *read-write* files: package.json
    
    ASSISTANT: Thank you for providing the `package.json` file.
    
    From the provided `package.json` file, I can see that the current version of React Native in your project is `0.66.4`.
    
    To upgrade React Native, you can use the `react-native upgrade` command which will automatically upgrade your project to the latest version. However, this command might not always work as expected, especially for major version upgrades.
    
    Alternatively, you can manually update the version of React Native in your `package.json` file and then run `yarn install` or `npm install` to install the new version.
    
    Here's how you can manually upgrade React Native to version `0.67.3` (the latest stable version at the time of writing):
    
    ```json
    package.json
    <<<<<<< HEAD
        "react-native": "0.66.4",
    =======
        "react-native": "0.67.3",
    >>>>>>> updated
    ```
    
    After updating the `package.json` file, run `yarn install` or `npm install` to install the new version of React Native.
    
    Please note that upgrading React Native might require you to make additional changes to your native iOS and Android projects. You can refer to the [React Native Upgrade Guide](https://react-native-community.github.io/upgrade-helper/) for detailed instructions on how to upgrade your project.
    
    Also, remember to test your application thoroughly after the upgrade to ensure that everything still works as expected.
    irony committed Sep 15, 2023
    Configuration menu
    Copy the full SHA
    23f81cf View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    501ec80 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    65176ea View commit details
    Browse the repository at this point in the history
  5. wip: request headers

    schweinryder committed Sep 15, 2023
    Configuration menu
    Copy the full SHA
    8912342 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    0ff5fad View commit details
    Browse the repository at this point in the history
  7. wip: fetch

    schweinryder committed Sep 15, 2023
    Configuration menu
    Copy the full SHA
    48d8ae2 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    76fd23d View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    a5ebc0f View commit details
    Browse the repository at this point in the history

Commits on Sep 18, 2023

  1. fix: dont set session here

    irony committed Sep 18, 2023
    Configuration menu
    Copy the full SHA
    78e045e View commit details
    Browse the repository at this point in the history

Commits on Sep 20, 2023

  1. feat: follow redirects

    schweinryder committed Sep 20, 2023
    Configuration menu
    Copy the full SHA
    bd2ccfc View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    d75f2ec View commit details
    Browse the repository at this point in the history
  3. wip: redirect

    schweinryder committed Sep 20, 2023
    Configuration menu
    Copy the full SHA
    8a1a0d7 View commit details
    Browse the repository at this point in the history

Commits on Sep 22, 2023

  1. Configuration menu
    Copy the full SHA
    63dc2eb View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    3f469de View commit details
    Browse the repository at this point in the history
  3. feat: more data

    schweinryder committed Sep 22, 2023
    Configuration menu
    Copy the full SHA
    6130fdb View commit details
    Browse the repository at this point in the history

Commits on Oct 6, 2023

  1. wip: fetch more data

    schweinryder committed Oct 6, 2023
    Configuration menu
    Copy the full SHA
    9276db3 View commit details
    Browse the repository at this point in the history
  2. fix: wrong debug

    schweinryder committed Oct 6, 2023
    Configuration menu
    Copy the full SHA
    c4c52b9 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    618bdbf View commit details
    Browse the repository at this point in the history
  4. fix: url for week data

    irony committed Oct 6, 2023
    Configuration menu
    Copy the full SHA
    8385d30 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    f1c622e View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    53ee3c1 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    b0764cf View commit details
    Browse the repository at this point in the history
  8. feat: fetch week data

    schweinryder committed Oct 6, 2023
    Configuration menu
    Copy the full SHA
    ef5e560 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    959b17b View commit details
    Browse the repository at this point in the history
  10. feat: parse news data

    schweinryder committed Oct 6, 2023
    Configuration menu
    Copy the full SHA
    dd0f8f3 View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    ab9b3a5 View commit details
    Browse the repository at this point in the history
  12. fix: padStart in schedule

    irony committed Oct 6, 2023
    Configuration menu
    Copy the full SHA
    7dc5b80 View commit details
    Browse the repository at this point in the history